ListBase Properties

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Syntax

C#
[SerializableAttribute]
public abstract class ListBase<T>
Visual Basic (Declaration)
<SerializableAttribute> _
Public MustInherit Class ListBase(Of T)
Visual C++
[SerializableAttribute]
generic<typename T>
public ref class ListBase abstract

Type Parameters

T

The type exposes the following properties.

Public Properties

  NameDescription
Public propertyCount
The property must be overridden by the derived class to return the number of items in the list.
(Overrides CollectionBase<(Of <T>)>..::Count.)
Public propertyItem
The indexer must be overridden by the derived class to get and set values of the list at a particular index.

Explicit Interface Implementations

  NameDescription
Explicit interface implemetationPrivate propertyICollection<(Of <T>)>..::IsReadOnly (Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::IsSynchronized
Indicates whether the collection is synchronized.
(Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyICollection..::SyncRoot
Indicates the synchronization object for this collection.
(Inherited from CollectionBase<(Of <T>)>.)
Explicit interface implemetationPrivate propertyIList..::IsFixedSize
Returns whether the list is a fixed size. This implementation always returns false.
Explicit interface implemetationPrivate propertyIList..::IsReadOnly
Returns whether the list is read only. This implementation returns the value from ICollection<T>.IsReadOnly, which is by default, false.
Explicit interface implemetationPrivate propertyIList..::Item
Gets or sets the value at a particular index in the list.

See Also